home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Business Assistant
/
Business Assistant.iso
/
acctg
/
axs_1
/
_chka.dd
< prev
next >
Wrap
Text File
|
1988-07-18
|
2KB
|
22 lines
/*-------------------------- _chka.dd: checking account list record definition ------------------*/
/* Fld_name | Type | Length | Field Description */
/*--------------------------------------------------------------------------------------------------*/
ck_acccode c 7 /* checking account code - 6 letters + NUL */
ck_cocode c 7 /* company code of company to which this account belongs */
ck_bkname c 41 /* name of bank at which account is open */
ck_bkno c 12 /* bank number (optional field) */
ck_bkaccno c 12 /* bank account number of checking account (optional field) */
ck_blbeg d /* beginning balance in account */
ck_blcur d /* current balance in account */
ck_nextck l /* next available check in account */
ck_intckno l /* internal variable to track next available check */
ck_stopck l /* last available check number */
ck_chartacc l /* account number of checking account in chart of accounts */
ck_minlimit d /* minimum balance for the checking account */
/*--------------------------------------------------------------------------------------------------*/
keys /* Index keys for record search and extraction */
cn 1:ck_acccode /* Primary: checking account code */
cn 2:ck_cocode /* Secondary: company code of checking account */
cn 3:ck_bkname /* Secondary: bank name */
/*--------------------------------------------------------------------------------------------------*/